價格:免費
更新日期:2018-10-04
檔案大小:3.6M
目前版本:1.0
版本需求:Android 4.4 以上版本
官方網站:http://data2viz.io
Email:info@data2viz.io
聯絡地址:Boulevard Georges Favon 3 1204 Genève Suisse
Charts.kt is a high level charting library for your Android applications built with Kotlin.
This library proposes a very intuitive charting grammar that allows you to build your charts easily, even for non charting experts.
Benefit from the typed DSL: use auto-completion and build your chart step by step, guided by your code editor, you can build your charts in a few lines of code.
Example of code
This will display an Area Chart of your players highscores:
• viz {
• chartXY {
• title {
• position = Positions.Top
• text = "Highscores / Players level"
• }
• seriesContinuous {
• xAccessor = { it.playerLevel }
• areaRangeSeries {
• yAccessor = { it.score }
• }
• }
• }
• }
Current version
Charts.kt is actually in V0.4 and includes :
• Linechart
• Columnchart
• Bubblechart
• Areachart
• Plotchart
• Continuous, Categorical and Time series
• Automatic axes (layout, min/max...)
• Formatting for axes
• Automatic sizing and padding (fixed or responsive size)
• Title and legend
Install our demo to check various charts examples.